home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NeXTSTEP 3.1 (Developer) [x86]
/
NeXT Step 3.1 Intel dev.cdr.dmg
/
NextDeveloper
/
Examples
/
AppKit
/
Graph
/
Graph.h
< prev
next >
Wrap
Text File
|
1992-06-15
|
880b
|
31 lines
/*
Graph.h
This file used to generate a precompiled header for the whole app. We
include all the system headers used by the app and all our headers into
one giant precomp, which the compiler can quickly parse. In other Graph
header files, we include just the minimal headers we need, and use @class
to declare classes we reference for static typing of instance variables
or method parameters.
*/
/* System headers */
#import <appkit/appkit.h>
#import <bsd/sys/dir.h>
#import <3Dkit/3Dkit.h>
/* a workaround, since its not declared any system header file */
extern char *realpath(const char *fileName, char *resolvedName);
/* Graph headers */
#import "exprDefs.h"
#import "Expression.h"
#import "Graph3DDoc.h"
#import "PointMesh.h"
#import "GraphApp.h"
#import "GraphDoc.h"
#import "ThreeDPanel.h"
#import "LineGraph.h"
#import "RotatorCamera.h"